all:
	gcc *.c -c
	rm -f sw_cuore.o
	gcc sw_cuore.c *.o -l ncurses -o prog

clean:
	rm -f *.o
	rm -f prog
